home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet internetowy / Rozne / HTTrack 3.40-2 / httrack-3.40-2.exe / {app} / src / htsback.h < prev    next >
C/C++ Source or Header  |  2005-08-28  |  5KB  |  115 lines

  1. /* ------------------------------------------------------------ */
  2. /*
  3. HTTrack Website Copier, Offline Browser for Windows and Unix
  4. Copyright (C) Xavier Roche and other contributors
  5.  
  6. This program is free software; you can redistribute it and/or
  7. modify it under the terms of the GNU General Public License
  8. as published by the Free Software Foundation; either version 2
  9. of the License, or any later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  19.  
  20.  
  21. Important notes:
  22.  
  23. - We hereby ask people using this source NOT to use it in purpose of grabbing
  24. emails addresses, or collecting any other private information on persons.
  25. This would disgrace our work, and spoil the many hours we spent on it.
  26.  
  27.  
  28. Please visit our Website: http://www.httrack.com
  29. */
  30.  
  31. /* ------------------------------------------------------------ */
  32. /* File: httrack.c subroutines:                                 */
  33. /*       backing system (multiple socket download)              */
  34. /* Author: Xavier Roche                                         */
  35. /* ------------------------------------------------------------ */
  36.  
  37.  
  38. #ifndef HTSBACK_DEFH
  39. #define HTSBACK_DEFH 
  40.  
  41. #include "htsglobal.h"
  42. #include "htsbasenet.h"
  43. #include "htscore.h"
  44.  
  45. typedef enum BackStatusCode {
  46.   STATUSCODE_INVALID = -1,
  47.   STATUSCODE_TIMEOUT = -2,
  48.   STATUSCODE_SLOW = -3,
  49.   STATUSCODE_CONNERROR = -4,
  50.   STATUSCODE_NON_FATAL = -5,
  51.   STATUSCODE_SSL_HANDSHAKE = -6,
  52.   STATUSCODE_TOO_BIG = -7,
  53.   STATUSCODE_TEST_OK = -10
  54. } BackStatusCode;
  55.  
  56. /* Library internal definictions */
  57. #ifdef HTS_INTERNAL_BYTECODE
  58.  
  59. // create/destroy
  60. struct_back* back_new(int back_max);
  61. void back_free(struct_back** sback);
  62.  
  63. // backing
  64. #define BACK_ADD_TEST "(dummy)"
  65. #define BACK_ADD_TEST2 "(dummy2)"
  66. int  back_index(struct_back* sback,char* adr,char* fil,char* sav);
  67. int back_available(struct_back* sback);
  68. LLint back_incache(struct_back* sback);
  69. int back_done_incache(struct_back* sback);
  70. HTS_INLINE int  back_exist(struct_back* sback,char* adr,char* fil,char* sav);
  71. int  back_nsoc(struct_back* sback);
  72. int  back_nsoc_overall(struct_back* sback);
  73. int  back_add(struct_back* sback,httrackp* opt,cache_back* cache,char* adr,char* fil,char* save,char* referer_adr,char* referer_fil,int test,int* pass2_ptr);
  74. int  back_add_if_not_exists(struct_back* sback,httrackp* opt,cache_back* cache,char* adr,char* fil,char* save,char* referer_adr,char* referer_fil,int test,int* pass2_ptr);
  75. int  back_stack_available(struct_back* sback);
  76. int  back_search(httrackp* opt, cache_back* cache, struct_back* sback);
  77. int  back_search_quick(struct_back* sback);
  78. void back_clean(httrackp* opt,cache_back* cache,struct_back* sback);
  79. int  back_cleanup_background(httrackp* opt,cache_back* cache,struct_back* sback);
  80. void back_wait(struct_back* sback,httrackp* opt,cache_back* cache,TStamp stat_timestart);
  81. int  back_letlive(httrackp* opt, cache_back* cache, struct_back* sback, int p);
  82. int  back_searchlive(httrackp* opt, struct_back* sback, char* search_addr);
  83. void back_connxfr(htsblk* src, htsblk* dst);
  84. void back_move(lien_back* src, lien_back* dst);
  85. void back_copy_static(const lien_back* src, lien_back* dst);
  86. void back_set_finished(struct_back* sback, int p);
  87. int  back_delete(httrackp* opt,cache_back* cache,struct_back* sback,int p);
  88. int  back_flush_output(httrackp* opt, cache_back* cache, struct_back* sback, int p);
  89. int  back_set_passe2_ptr(httrackp* opt, cache_back* cache, struct_back* sback, int p, int* pass2_ptr);
  90. void back_delete_all(httrackp* opt, cache_back* cache, struct_back* sback);
  91. int  back_maydelete(httrackp* opt, cache_back* cache, struct_back* sback, int p);
  92. void back_maydeletehttp(httrackp* opt, cache_back* cache, struct_back* sback, int p);
  93. int  back_trylive(httrackp* opt,cache_back* cache,struct_back* sback, int p);
  94. int  back_finalize(httrackp* opt,cache_back* cache,struct_back* sback,int p);
  95. void back_info(struct_back* sback,int i,int j,FILE* fp);
  96. void back_infostr(struct_back* sback,int i,int j,char* s);
  97. LLint back_transfered(LLint add,struct_back* sback);
  98. // hostback
  99. #if HTS_XGETHOST
  100. void back_solve(lien_back* sback);
  101. int host_wait(lien_back* sback);
  102. #endif
  103. int back_checksize(httrackp* opt,lien_back* eback,int check_only_totalsize);
  104. int back_checkmirror(httrackp* opt);
  105.  
  106. #if HTS_XGETHOST
  107. #if USE_BEGINTHREAD
  108. PTHREAD_TYPE PTHREAD_TYPE_FNC Hostlookup(void* iadr_p);
  109. #endif
  110. #endif
  111.  
  112. #endif
  113.  
  114. #endif
  115.